projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e9fbf17
)
(Finsert_startup_screen): Call `insert_char' with a single argument.
author
Richard M. Stallman
<rms@gnu.org>
Mon, 11 Aug 1997 00:20:31 +0000
(
00:20
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Mon, 11 Aug 1997 00:20:31 +0000
(
00:20
+0000)
src/dosfns.c
patch
|
blob
|
history
diff --git
a/src/dosfns.c
b/src/dosfns.c
index 69254ef7089cbce5e5ecf2f0aedbd2fff761a3e2..f0b1c69124e17c8b298e3dd07e3371cce545d6e7 100644
(file)
--- a/
src/dosfns.c
+++ b/
src/dosfns.c
@@
-222,10
+222,10
@@
Return nil if startup screen is not available.")
{
for (j = 0; j < cols; j++)
{
- insert_char (*s
, 1
);
+ insert_char (*s);
s += 2;
}
- insert_char ('\n'
, 1
);
+ insert_char ('\n');
}
return Qt;